home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
PROGRAMM
/
TUTORIAL
/
0222.ZIP
/
TIMI.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1980-01-01
|
512b
|
14 lines
INTERFACE;
UNIT TIM (EXACTTIME,DELAY);
PROCEDURE EXACTTIME (VAR hrs, mins, secs: REAL);
PROCEDURE DELAY (wsecs: REAL);
{ This part of the program merely shows how an interface for a unit is
constructed, and then how this interface can be included in both the
implementation of the unit and in a program that uses that unit; this
is done with the $INCLUDE metacommand for IBM Pascal. }
BEGIN
END;